func runtime.cheaprand

14 uses

	runtime (current package)
		iface.go#L483: 	if cheaprand()&1023 != 0 {
		iface.go#L490: 	if cheaprand()&uint32(oldC.Mask) != 0 {
		iface.go#L583: 	if cheaprand()&1023 != 0 {
		iface.go#L592: 	if cheaprand()&uint32(oldC.Mask) != 0 {
		mbitmap.go#L792: 	off := alignUp(uintptr(cheaprand())%dataSize, goarch.PtrSize)
		mbitmap.go#L799: 	size -= alignDown(uintptr(cheaprand())%size, goarch.PtrSize)
		proc.go#L3825: 		for enum := stealOrder.start(cheaprand()); !enum.done(); enum.next() {
		proc.go#L5239: 	newg.trackingSeq = uint8(cheaprand())
		rand.go#L227: func cheaprand() uint32 {
		rand.go#L272: 	return int64(cheaprand())<<31 ^ int64(cheaprand())
		rand.go#L293: 	return uint32((uint64(cheaprand()) * uint64(n)) >> 32)
		sema.go#L378: 	s.ticket = cheaprand() | 1
		time.go#L740: 			t.rand = cheaprand()